-
Notifications
You must be signed in to change notification settings - Fork 223
feat(qdrant): Add vector index support method #1122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat(qdrant): Add vector index support method #1122
Conversation
@harshitrwt please follow the following example - https://cocoindex.io/docs/examples/simple_vector_index Change it to Qdrant, And attach a screenshot for the test before we merge it. if you have any question please let us know! (You can always find us https://discord.com/invite/zpA9S2DR7s for live chat too) |
f2edd3e
to
65a1002
Compare
Hi @badmonster0, Also, if possible, could you assign the issue back to me and add the hacktoberfest-accepted label? Here are the screenshots i have achieved with qdrant. ![]() ![]() ![]() |
@harshitrwt you are assigned with the issue, we will tag hacktober-accepted once the PR is merged, thanks! will get it back to you shortly on the review |
thanks a lot for the testing and screenshot! |
'targets/lancedb', | ||
'targets/neo4j', | ||
'targets/kuzu', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is unnecessary.
if let Some(method) = &vector_index.method { | ||
match method { | ||
spec::VectorIndexMethod::Hnsw { .. } | | ||
spec::VectorIndexMethod::IvfFlat { .. } => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's raise an error here for unsupported index type (IvfFlat), as build()
happens earlier.
This PR introduces HNSW vector index support for qdrant, allowing users to create collections with fully configurable vector indexes.
fixes #1052